home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / xpk_source / xpkmaster / version.h < prev    next >
C/C++ Source or Header  |  1998-08-27  |  3KB  |  67 lines

  1. #ifndef XPKMASTER_VERSION_C
  2. #define XPKMASTER_VERSION_C
  3.  
  4. /* Programmheader
  5.  
  6.     Name:        version.c
  7.     Main:        xpkmaster
  8.     Versionstring:    $VER: version.c 4.34 (26.08.1998)
  9.     Author:        SDI
  10.     Distribution:    Freeware
  11.     Description:    the xpk packing library system version data
  12.  
  13.  3.10  28.10.96 : first real version
  14.  3.11  25.11.95 : recompiled with SAS 6.57
  15.  4.0   29.12.96 : added some new functions, OS2.0 only, corrected error in
  16.     locale handling (Ooops - (A2) instead of A2 :-)
  17.  4.1   11.01.97 : hopefully fixed buffer overworking bug
  18.  4.2   30.01.97 : mem bug still was not completely fixed
  19.  4.3   01.03.97 : changed semaphore structure
  20.  4.4   09.03.97 : added preferences stuff
  21.  4.5   23.03.97 : fixed Enforcer Hits
  22.  4.6   28.03.97 : fixed prefs stuff
  23.  4.7   31.03.97 : changed XpkQuery and Password stuff
  24.  4.8   02.04.97 : changed a lot, removed some stuff
  25.  4.9   03.04.97 : preferences buffers now via hookread and not direct
  26.  4.10  04.04.97 : minor fixes
  27.  4.11  10.04.97 : Password request now restores FirstScreen
  28.  4.12  28.04.97 : fixed mem-corrupt bug and changed progress time calc
  29.  4.13  11.05.97 : fixed reported errors in Expunge code
  30.  4.14  06.06.97 : added DEBUG output
  31.  4.15  18.08.97 : changed RecogFunc interface a bit
  32.  4.16  21.08.97 : did a big mistake in version 4.15 (USER mode did not work)
  33.  4.17  15.10.97 : PassRequest now uses timer.device
  34.  4.18  07.11.97 : TimeOut of 0 now means again no timeout
  35.  4.19  19.12.97 : added xfdmaster support, code cleanup and changes
  36.  4.20  27.12.97 : fixed bug in Autopassword and added title line to passreq
  37.  4.21  01.01.98 : USER information is a bit better now
  38.  4.22  09.01.98 : added ability to pass decrunch keys, PassRequest uses
  39.     gadtools now and show stars
  40.  4.23  18.01.98 : added 2 new password flags
  41.  4.24  21.01.98 : added password verification
  42.  4.25  24.01.98 : fixed xfdmaster support a bit, removed PP support
  43.  4.26  27.01.98 : brings better errors in USER mode
  44.  4.27  17.02.98 : fixed pack problem with long-files
  45.  4.28  21.02.98 : inserted C library startup header
  46.  4.29  24.02.98 : fixed long files bug finally, xm_Next is cleared for
  47.      queries now.
  48.  4.30  03.03.98 : removed Enforcer hit in XpkQuery function
  49.  4.31  26.03.98 : some code optimizations
  50.  4.32  29.04.98 : bugfix in XpkQuery
  51.  4.33  09.05.98 : bug fixes, now uses cached SysBase
  52.  4.34  26.08.98 : fixed problem, when using XpkWrite directly
  53. */
  54.  
  55. #define VERSION   4
  56. #define REVISION 34
  57. #define LIBNAME  "xpkmaster.library"
  58. #ifdef DEBUG
  59. #define ADDTXT    " debug version"
  60. #else
  61. #define ADDTXT
  62. #endif
  63.  
  64. #define IDSTRING "xpkmaster 4.34 (26.08.1998)" ADDTXT "\r\n"
  65.  
  66. #endif /* XPKMASTER_VERSION_C */
  67.